home *** CD-ROM | disk | FTP | other *** search
- Rem Copyright (c) 1991 by Oracle Corporation
- Rem NAME
- Rem ulcase5.sql - <one-line expansion of the name>
- Rem DESCRIPTION
- Rem <short description of component this file declares/defines>
- Rem RETURNS
- Rem
- Rem NOTES
- Rem <other useful comments, qualifications, etc.>
- Rem MODIFIED (MM/DD/YY)
- Rem ksudarsh 03/11/93 - comment out vms specific host command
- Rem ksudarsh 12/29/92 - Creation
- Rem cheigham 08/28/91 - Creation
- rem
- rem $Header: ulcase5.sql 7020100.1 94/09/23 22:19:24 cli Generic<base> $
- rem
- set termout off
- rem host write sys$output "Adding table. Please wait."
- set feedback off
-
- drop table proj;
-
- create table proj
- (empno number,
- projno number);
-
- exit
-